home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
manual-p
/
man_db-2.000
/
man_db-2
/
man_db-2.3.10
/
lib
/
flock.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-03-28
|
385 b
|
18 lines
/* Operations for the `flock' call. */
#ifndef LOCK_SH
# define LOCK_SH 1 /* Shared lock. */
#endif
#ifndef LOCK_EX
# define LOCK_EX 2 /* Exclusive lock. */
#endif
#ifndef LOCK_UN
# define LOCK_UN 8 /* Unlock. */
#endif
/* Can be OR'd in to one of the above. */
#ifndef LOCK_NB
# define LOCK_NB 4 /* Don't block when locking. */
#endif